@php use App\Models\Profile; use App\Models\Contact; $profile = Profile::first(); $contact = Contact::first(); use App\Models\Menu; $menu = Menu::where([['status', 1], ['visibility', 1]]) ->where('type', 'Main') ->take(5) ->get(); $dd_menu = Menu::where([['status', 1], ['visibility', 1]]) ->where('type', 'Main') ->skip(5) ->take(6) ->get(); @endphp Hoope
{{ $contact->email ?? 'info@example.com' }} {{ $contact->phone ?? '+93 700 000 000' }}