@extends('web.layouts.app') @section('content')
@if (env('APP_PROJECT') != 'Rouaa' && env('APP_PROJECT') != 'Mora') @include('web.settings_menu') @endif

@lang('user.tags')

@can('tags-create')

@include('web.tags.create') @endcan
@foreach ($tags as $tag) @can('tags-edit') @include('web.tags.edit') @endcan @can('tags-delete') @include('web.tags.delete') @endcan @endforeach
@lang('user.name') @lang('user.actions')
{{ $tag->name }}
@can('tags-edit') @endcan @can('tags-delete') @endcan
{{ $tags->links('vendor.pagination.custom') }}

@lang('user.note')

@lang('notes.tags_note')

@endsection @section('script') @endsection