Sistema de controles da União de Ciclistas do Brasil
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
@extends('layouts.app')
|
|
|
|
|
|
@section('sidebar')
|
|
|
<x-sidebar.item href="{{ route('collaborators.dashboard') }}" :current="request()->route()->named('collaborators.dashboard')">
|
|
|
<x-slot name="icon">
|
|
|
@svg('home')
|
|
|
</x-slot>
|
|
|
|
|
|
{{ __('sidebar.dashboard') }}
|
|
|
</x-sidebar.item>
|
|
|
|
|
|
<x-sidebar.title>
|
|
|
{{ __('sidebar.associates.title') }}
|
|
|
</x-sidebar.title>
|
|
|
|
|
|
<x-sidebar.item href="{{ route('collaborators.associates.index') }}" :current="request()->route()->named('collaborators.associates.*')">
|
|
|
<x-slot name="icon">
|
|
|
@svg('database', 'fill-current')
|
|
|
</x-slot>
|
|
|
|
|
|
{{ __('sidebar.associates.index') }}
|
|
|
</x-sidebar.item>
|
|
|
@endsection
|