@extends('back.layouts.app') @push('title', __('Articles')) @push('css') @endpush @section('content')
{{ __('Articles') }} {{ __('Add New Article') }}
@foreach($articles as $article) @endforeach
#ID {{ __('Name') }} {{ __('Description') }} {{ __('Seo URL') }} {{ __('Updated At') }} {{ __('Action') }}
{{ $article->id }} {{ $article->name }} {{ $article->description }} {{ route('article',['slug' => $article->slug]) }} {{ $article->updated_at }}
{{ $articles->links() }}
@csrf
@endsection @push('js') @endpush