@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Brands']) @endsection @section('content')
@php $url=my_url(); @endphp
@csrf
@foreach($posts as $row) @endforeach
{{ __('Name') }} {{ __('Url') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
{{ $row->name }} {{ $url.'/brand/'.$row->slug.'/'.$row->id }} @if($row->featured==1) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $row->created_at->diffforHumans() }}
{{ __('Name') }} {{ __('Url') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
{{ $posts->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush