@section('site_title', formatTitle([__('Websites'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Websites')], ]])

{{ __('Websites') }}

{{ __('New') }}
{{ __('Websites') }}
@include('shared.filter_tags')
@include('shared.message') @if(count($websites) == 0) {{ __('No data') }}. @else
{{ __('Name') }}
{{ __('User') }}
@foreach($websites as $website) @endforeach
{{ __('Showing :from-:to of :total', ['from' => $websites->firstItem(), 'to' => $websites->lastItem(), 'total' => $websites->total()]) }}
{{ $websites->onEachSide(1)->links() }}
@endif