@extends('layouts.master') @section('title', 'Articles') @section('title-topbar', 'Articles') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @if (Session::has('error_delete'))

We can't do it!

{{ Session::get('error_delete') }}

@endif @endsection @section('content')
{{-- Dashboard | --}} {{ __('basic.articles') }}
{{ __('basic.articals') }}
@foreach ($destination as $item) @endforeach
{{ __('basic.image') }} {{ __('basic.name') }} {{ __('basic.slug') }} {{ __('basic.discretion') }} {{ __('basic.short discretion') }} {{ __('basic.handle') }}
{{ $item->name }} {{ $item->slug }} {{ $item->description }} {{ $item->short_description }} {{ __('basic.edit') }} {{ __('basic.delete') }}
{{-- {{ $destination->links() }} --}}
@endsection @section('js') @endsection