In Laravel Blade, we can basically do this:
@section(\'mysection\') @endsection @section(\'mysection\') @stop
What is the difference be
Both @endsection and @stop works.
@endsection
@stop
In Laravel 4 it seems that only @stop is supported 1. But from Laravel 5 onwards @stop is not even mention in the documentation 2.
So I would suggest to use @endsection.
See: