Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/resources/views/frontend/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/resources/views/frontend/data.blade.php

@foreach($restaurants as $post)
    <div>
        <h3><a href="">{{ $post->name }}</a></h3>
        <p>{{  \Illuminate\Support\Str::limit($post->description, 400) }}</p>

        <div class="text-right">
            <button class="btn btn-success">{{__('frontend.read_more')}}</button>
        </div>

        <hr class="margin-top-5">
    </div>
@endforeach