@extends('layouts.app', ['title' => __('Add News')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, 'description' => __('This is your profile page. You can see the progress you\'ve made with your work and manage your projects or assigned tasks'), 'class' => 'col-lg-7' ])

{{ __('List News') }}

@if (session('msg')) @endif
@foreach($news as $newss) @method('delete') @csrf @endforeach
{{__('Name Arabic')}} {{__('Name English')}} {{__('Delete')}} {{__('Edit')}}
{{$newss->head_ar}} {{$newss->head_en}}
@include('layouts.footers.auth')
@endsection