@extends('layouts.main') @section('title') {{ __('Article') }} @endsection @section('page-title')

@yield('title')

@csrf
Add Article
@endsection @section('content')
@foreach ($articles as $key => $value)
{{ $value->title }}
@php echo Str::substr(strip_tags($value->description), 0, 150) . '...'; @endphp

  
@endforeach
@if (count($articles)>12)
@csrf
@endif
@endsection @section('script') @endsection